home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / stdio / setbuf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-20  |  111 b   |  8 lines

  1. #include <stdio.h>
  2.  
  3. void setbuf(FILE *stream,char *buf)
  4. {
  5.     setvbuf(stream,buf,buf?_IOFBF:_IONBF,BUFSIZ);
  6. }
  7.  
  8.